home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / account_bash.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  49 lines

  1. #
  2. # This script was copied & modified by Michel Arboi :-)
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. account = "bash";
  9.  
  10. if(description)
  11. {
  12.  script_id(15583);
  13.  script_version ("$Revision: 1.2 $");
  14.  
  15.  script_name(english:string("Unpassworded ", account, " account"));
  16.          
  17.  
  18.  script_description(english:string("
  19. The account '", account, "' has no password set. 
  20. An attacker may use it to gain further privileges on this system
  21.  
  22. This account was probably created by a backdoor installed 
  23. by a fake Linux Redhat patch.
  24.  
  25. See http://www.k-otik.com/news/FakeRedhatPatchAnalysis.txt
  26.  
  27. Risk factor : High
  28. Solution : disable this account and check your system"));
  29.          
  30. script_summary(english:"Logs into the remote host with "+account+ " account");
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  # script_family(english:"Default Unix Accounts");
  35.  script_family(english:"Backdoors");
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  38.  
  39.  script_dependencie("find_service.nes");
  40.  script_require_ports("Services/telnet", 23, "Services/ssh", 22);
  41.  exit(0);
  42. }
  43.  
  44. include("ssh_func.inc");
  45. include("default_account.inc");
  46.  
  47. port = check_account(login:account);
  48. if(port)security_hole(port);
  49.